home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PRINTER / CVR140.ARJ / CONFIG.BAT < prev    next >
DOS Batch File  |  1991-09-08  |  443b  |  16 lines

  1. @ECHO OFF
  2.     IF NOT %1.==. GOTO CHECK
  3.     ECHO Specify the name of the customization script to be used.
  4.     ECHO For example:   CONFIG MYCONFIG
  5.     GOTO EXIT
  6. :CHECK
  7.     IF EXIST %1.SCR GOTO READY
  8.     ECHO Error: Customization file "%1.SCR" does not exist.
  9.     GOTO EXIT
  10. :READY
  11.     ECHO Customizing CVR.COM to use "%1" printer codes.
  12.     COPY   CVR.CFG CVR.BAK
  13.     DEBUG  CVR.CFG <%1.SCR
  14.     ECHO Customization complete.
  15. :EXIT
  16.